home *** CD-ROM | disk | FTP | other *** search
Makefile | 1990-09-11 | 52.1 KB | 1,281 lines |
- #
- # Makefile for the Emerald Kernel, February 1988.
- #
- # Derived from the make file for Eden kernels.
- #
- #
- # ROOTDIR is the root of the Emerald files on your particular machine,
- # e.g., at the UW: /usr/em, at the Univ. of Copenhagen: /eric/em
- #
- ROOTDIR=/scratch/eric/emerald/
- # EMSITE currently does not matter.
- EMSITE=DIKU
- # INSTALLIN is the file name where the compiled kernel goes.
- INSTALLIN=${ROOTDIR}/Kernel/Em/em
- # options for compilation are in CFLAGS and are
- # composed of STDOPTS, USRCOPTS, and its own set of options.
- STDOPTS=-D${EMSITE}
- #
- # Define USRCOPTS at make time
- #
- # CPNEWLOG ?
- # BSD ?
- # CHECKPOINT ?
- # xkernel use xkernel << NB must also set DEFINEXKERNEL
- # xsimul but simulate it
- USRCOPTS=-g -DCPNEWLOG -DBSD -DCHECKPOINT # -Dxkernel -Dxsimul
- # use one or the other of the following two
- #DEFINEXKERNEL='define(xkernel,1)'
- DEFIINEXKERNEL=
- #
- # If not running at Arizona, or you don't want an MLP-compatible kernel then
- # comment out these lines.
- # Note (Eric Jul, Aug. 1989): Norm says MLP never will work.
- # MLP_CFLAGS = -DINCLUDE_MLP
- # MLP_SRC = ../MLP/mlp.c
- # MLP_OBJS = mlp.o
- # MLP_LIBS = /usr/mlp/v2/mlpx/lib/mlp.a /usr/mlp/v2/mlpx/lib/stream.a
-
- CFLAGS= ${USRCOPTS} -I${ROOTDIR} -I${ROOTDIR}/Kernel/h ${STDOPTS} ${MLP_CFLAGS}
- # MAKEDEP is the program used to extract the dependencies from the
- # .c files used.
- MAKEDEP= ${ROOTDIR}/bin/makedep
- MACHINE=sun
-
- .DEFAULT:
- @echo "cannot do " $@
-
- # STDLIBS are the libraries needed.
- STDLIBS= -ldbm -lc $(MLP_LIBS)
- #STDLIBS= -ldbm -lX -lc $(MLP_LIBS)
-
- # A list of the object files.
- OBJS=bufferCode.o etherCode.o fifoCode.o handlerCode.o keyedCode.o \
- msgCode.o timerCode.o traceMsg.o hotsAccess.o \
- kTaskQ.o sunQueInst.o hotsUpDown.o bootKernel.o main.o \
- mainLoop.o OID.o kOps.o invoke.o locate.o mobility.o\
- checkPoint.o cPDBM.o cPLog.o recover.o replicant.o \
- emPause.o releaseSigs.o setHandler.o kSigStructs.o \
- kmdMM.o kmdCode.o errMsg.o getlnn.o \
- myalloc.o emalloc.o install.o stats.o kstub.o ecstub.o \
- mallocStats.o errMsgs.o \
- loadCode.o readDoto.o transDoto.o \
- fakeIO.o lmCode.o node.o assert.o map.o item.o expandArray.o \
- timing.o utils.o ecutils.o sigio.o unixIO.o stream.o request.o \
- measure.o kConform.o badsignal.o avg.o set.o gc.o map96.o \
- XInterface.o xkUtils.o ndbm.o $(MLP_OBJS)
-
- USRLIBS=
-
- CFILES=../MsgOps/bufferCode.c ../MsgOps/etherCode.c \
- ../MsgOps/fifoCode.c ../MsgOps/handlerCode.c \
- ../MsgOps/keyedCode.c ../Em/msgCode.c \
- ../MsgOps/timerCode.c ../MsgOps/traceMsg.c \
- ../DataStructs/hotsAccess.c ../DataStructs/kTaskQ.c \
- ../DataStructs/sunQueInst.c ../Em/hotsUpDown.c \
- ../BootCode/bootKernel.c ../Em/main.c ../Em/mainLoop.c \
- ../Em/OID.c ../Em/kOps.c ../Em/invoke.c ../Em/locate.c \
- ../Em/mobility.c ../Checkpoint/checkPoint.c \
- ../Checkpoint/cPDBM.c ../Checkpoint/cPLog.c \
- ../Checkpoint/recover.c ../Checkpoint/replicant.c \
- ../SigHandling/releaseSigs.c \
- ../SigHandling/setHandler.c ../SigHandling/kSigStructs.c \
- ../KmdOps/kmdMM.c ../KmdOps/kmdCode.c \
- ../Utils/errMsg.c ../Utils/getlnn.c \
- ../EmMalloc/myalloc.c \
- ../EmMalloc/emalloc.c ../EmMalloc/install.c \
- ../EmMalloc/stats.c ../Em/mallocStats.c \
- ../../ErrCodes/errMsgs.c ../FileLoad/loadCode.c \
- ../FileLoad/readDoto.c ../FileLoad/transDoto.c \
- ../Em/fakeIO.c ../Em/lmCode.c ../Em/node.c ../Em/assert.c \
- ../Em/map.c ../Em/item.c ../Em/expandArray.c \
- ../Em/timing.c ../Em/utils.c ../Em/ecutils.c \
- ../Em/sigio.c ../Em/unixIO.c ../Em/stream.c \
- ../Em/request.c ../Em/measure.c ../Em/kConform.c \
- ../Em/badsignal.c ../Em/avg.c ../Em/set.c ../Em/gc.c \
- ../Em/map96.c ../X/XInterface.c ../Em/xkUtils.c \
- ../Em/ndbm.c $(MLP_SRC)
-
- CEFILES=
- INCLUDES=
-
- # GREP = fgrep -i
- GREP = egrep
-
- em: makefile ${OBJS}
- @echo loading em for site ${EMSITE}
- @rm -f em core
- @cc -o em ${USRCOPTS} ${OBJS} ${USRLIBS} ${STDLIBS}
- @ls -l em
- @size em
-
-
- findethernet: findethernet2
- @echo -n Probable interface name 'is '
- @netstat -i | head -2 | tail -1 \
- | awk '{print $$1}'
-
- findethernet2:
- @echo -n Probable interface name for host `hostname` 'is '
- @netstat -i | fgrep `hostname` \
- | awk '{print $$1}'
-
- install: em distfile.Sun distfile.Vax
- mv -f ${INSTALLIN} ${INSTALLIN}_o
- mv em ${INSTALLIN}
- -if [ ! "${QRDREMOTEQ}" ]; then /usr/ucb/rdist; \
- rm -f distfile.Sun distfile.Vax; fi;
-
-
- depend:
- @echo "Looking in .c files"
- @${MAKEDEP} -l -I${ROOTDIR} -I${ROOTDIR}/Kernel/h -N ${CFILES} | \
- awk ' { if ($$1 != prev) { print rec; rec = $$0; prev = $$1; } \
- else { if (length(rec $$2) > 78) { print rec; rec = $$0; } \
- else rec = rec " " $$2 } } \
- END { print rec } ' > makedep
- @${MAKEDEP} -l -I${ROOTDIR} -I${ROOTDIR}/Kernel/h -CE -N ${CEFILES} | \
- awk ' { if ($$1 != prev) { print rec; rec = $$0; prev = $$1; } \
- else { if (length(rec $$2) > 78) { print rec; rec = $$0; } \
- else rec = rec " " $$2 } } \
- END { print rec } ' >> makedep
- @echo '$$r makedep' >>eddep
- @echo '/^# DO NOT DELETE THIS LINE/+1,$$d' >>eddep
- @echo '$$r makedep' >>eddep
- @echo 'w' >>eddep
- @echo "Updating makefile"
- @cp makefile makefile.bak
- @ed - makefile < eddep
- @rm eddep makedep
-
- distfile.Sun: ${ROOTDIR}/Adm/dfile.master rdist.files
- cp ${ROOTDIR}/Adm/dfile.master ./QQdistmaster
- /lib/cpp -P -C -DSUN QQdistmaster >distfile.Sun
- rm -f QQdistmaster
- -if [ -f /bin/sun ]; then cp distfile.Sun distfile; fi;
-
- distfile.Vax: ${ROOTDIR}/Adm/dfile.master rdist.files
- cp ${ROOTDIR}/Adm/dfile.master ./QQdistmaster
- /lib/cpp -P -C -DVAX QQdistmaster >distfile.Vax
- rm -f QQdistmaster
- -if [ ! -f /bin/sun ]; then cp distfile.Vax distfile; fi;
-
- tags: ${CFILES} ../h/*.h
- @-if [ -f ${ROOTDIR}/bin/ctags ]; then ${ROOTDIR}/bin/ctags -tw ${CFILES} ../h/*.h; else ctags -tw ${CFILES} ../h/*.h; fi;
-
- mtags: ${CFILES} ../h/*.h
- @mtags -twlv -Dxkernel $(CFLAGS) -I/usr/xkernel/share -I/usr/xkernel/simul -I/usr/xkernel/pc ${CFILES}
-
- cxref:
- cxref -c $(CFLAGS) $(CFILES) -o em.cxref
-
- sources:
- @echo ${CFILES}
-
- grep:
- @-${GREP} -n -e "${G}" ${CFILES}
-
- # grep:
- # @-${GREP} -n -e "${G}" ${CFILES} | \
- # sed 's/^\([^:]*\):\([^:]*\):/"\1", line \2:/'
- # @sleep 1
-
- lint: ${CFILES}
- @lint -zhbxu ${STDOPTS} -I${ROOTDIR} -I${ROOTDIR}/Kernel/h ${CFILES} | sed \
- -e '/warning: z__z redefinition hides earlier one/d' \
- -e '/possible pointer alignment problem/d' \
- -e '/MMTraceMsg/d' -e '/KMDPrint/d' -e '/DebugMsg/d' \
- -e '/KMDSet/d' \
- -e '/MMDefineMsgHandler/d' \
- -e '/_doprnt/d' \
- -e '/bind, arg. 2 used incon/d' \
- -e '/zzIndexzz/d' \
- -e '/inet_ntoa, arg. 1/d' \
- -e '/ntohs, arg. 1 used incon/d' \
- -e '/readdir, arg. 1 used incon/d' \
- -e '/opendir value used incon/d' \
- -e '/etext value declared incon/d' \
- -e '/ctime, arg. 1 used incon/d' \
- -e '/time, arg. 1 used incon/d' \
- -e '/time value used incon/d' \
- -e '/time value declared incon/d' \
- -e '/sprintf returns value/d' \
- -e '/gettimeofday returns value/d' \
- -e '/free, arg. 1 used incon/d' \
- -e '/install_alloc, arg./d' \
- -e '/sigstack/d' \
- -e '/sigvec/d' \
- -e '/gethostname, arg. 2 used incon/d' \
- -e '/MMSetMicroTimer/d' \
- -e '/MMSetTimer/d' \
- -e '/MMGetFromList, arg. 3/d' \
- -e '/MMGetFromList, arg. 4/d' \
- -e '/MMBuildMsg, arg./d' \
- -e '/MMAllocateMsg, arg. 2 used incon/d' \
- -e '/MMDeallocateMsg/d' \
- -e '/MMSendMsg, arg. 1 used incon/d' \
- -e '/CreateArray, arg. 1 used inconsis/d' \
- -e '/DiscardArray, arg. 1 used inconsi/d' \
- -e '/EnsureArray, arg. 1 used inconsis/d' \
- -e '/ExpandArray, arg. 1 used inconsis/d' \
- -e '/KernelCheatingCreate, arg. 4 used incon/d' \
- -e '/LMStartMsg, arg. 2 used incon/d' \
- -e '/LMStartMsg, arg. 3 used incon/d' \
- -e '/ErrMsg/d' -e '/QueueTask/d' \
- -e '/abort multiply declared/d' \
- -e '/calloc multiply declared/d' \
- -e '/free multiply declared/d' \
- -e '/sigvec, arg./d' \
- -e '/sbrk value used incon/d' \
- -e '/realloc multiply declared/d' \
- -e '/bcopy/d' -e '/sendto/d' \
- -e '/PutEdenMsg, arg./d' \
- -e '/union iovec never defined/d' \
- -e '/warning: unsigned comparison with 0/d' \
- -e '/constant argument to NOT/d' \
- -e '/warning: constant in conditional context/d' \
- -e '/(.*):/s/^\([^(]*\)(\([^)]*\)):/"\1", line \2:/' \
- -e 's/:: \([a-zA-Z-_.]*\)(\([0-9]*\))/:: file "\1", line \2/'
- @sleep 1
-
- clean: cleanup
- @rm -f *.ckp *.o em clean
-
- cleanup:
- @rm -f *.bak *.log cleanup .emacs_[0-9]*
-
- bufferCode.o: ../MsgOps/bufferCode.c
- ${CC} -c ${CFLAGS} ../MsgOps/bufferCode.c
-
- etherCode.o: ../MsgOps/etherCode.c
- ${CC} -c ${CFLAGS} ../MsgOps/etherCode.c
-
- fifoCode.o: ../MsgOps/fifoCode.c
- ${CC} -c ${CFLAGS} ../MsgOps/fifoCode.c
-
- handlerCode.o: ../MsgOps/handlerCode.c
- ${CC} -c ${CFLAGS} ../MsgOps/handlerCode.c
-
- keyedCode.o: ../MsgOps/keyedCode.c
- ${CC} -c ${CFLAGS} ../MsgOps/keyedCode.c
-
- msgCode.o: ../Em/msgCode.c
- ${CC} -c ${CFLAGS} ../Em/msgCode.c
-
- portCode.o: ../MsgOps/portCode.c
- ${CC} -c ${CFLAGS} ../MsgOps/portCode.c
-
- timerCode.o: ../MsgOps/timerCode.c
- ${CC} -c ${CFLAGS} ../MsgOps/timerCode.c
-
- traceMsg.o: ../MsgOps/traceMsg.c
- ${CC} -c ${CFLAGS} ../MsgOps/traceMsg.c
-
- hotsAccess.o: ../DataStructs/hotsAccess.c
- ${CC} -c ${CFLAGS} ../DataStructs/hotsAccess.c
-
- kTaskQ.o: ../DataStructs/kTaskQ.c
- ${CC} -c ${CFLAGS} ../DataStructs/kTaskQ.c
-
- sunQueInst.o: ../DataStructs/sunQueInst.c
- ${CC} -c ${CFLAGS} ../DataStructs/sunQueInst.c
-
- hotsUpDown.o: ../Em/hotsUpDown.c
- ${CC} -c ${CFLAGS} ../Em/hotsUpDown.c
-
- bootKernel.o: ../BootCode/bootKernel.c
- ${CC} -c ${CFLAGS} ../BootCode/bootKernel.c
-
- main.o: ../Em/main.c
- ${CC} -c ${CFLAGS} ../Em/main.c
-
- mainLoop.o: ../Em/mainLoop.c
- ${CC} -c ${CFLAGS} ../Em/mainLoop.c
-
- OID.o: ../Em/OID.c
- ${CC} -c ${CFLAGS} ../Em/OID.c
-
- kOps.o: ../Em/kOps.c ../Em/ementryext.h
- ${CC} -c ${CFLAGS} ../Em/kOps.c
-
- invoke.o: ../Em/invoke.c
- ${CC} -c ${CFLAGS} ../Em/invoke.c
-
- locate.o: ../Em/locate.c
- ${CC} -c ${CFLAGS} ../Em/locate.c
-
- mobility.o: ../Em/mobility.c
- ${CC} -c ${CFLAGS} ../Em/mobility.c
-
- checkPoint.o: ../Checkpoint/checkPoint.c
- ${CC} -c ${CFLAGS} ../Checkpoint/checkPoint.c
-
- cPDBM.o: ../Checkpoint/cPDBM.c
- ${CC} -c ${CFLAGS} ../Checkpoint/cPDBM.c
-
- cPLog.o: ../Checkpoint/cPLog.c
- ${CC} -c ${CFLAGS} ../Checkpoint/cPLog.c
-
- replicant.o: ../Checkpoint/replicant.c ../h/replicant.h
- $(CC) -c ${CFLAGS} ../Checkpoint/replicant.c
-
- recover.o: ../Checkpoint/recover.c
- ${CC} -c ${CFLAGS} ../Checkpoint/recover.c
-
- emPause.o: ../SigHandling/emPause.ca
- cp ../SigHandling/emPause.ca ../SigHandling/emPause.c
- ${CC} -E ${CFLAGS} ../SigHandling/emPause.c >emPause.s
- ${AS} -o emPause.o emPause.s
- rm -f emPause.s ../SigHandling/emPause.c
-
- releaseSigs.o: ../SigHandling/releaseSigs.c
- ${CC} -c ${CFLAGS} ../SigHandling/releaseSigs.c
-
- setHandler.o: ../SigHandling/setHandler.c
- ${CC} -c ${CFLAGS} ../SigHandling/setHandler.c
-
- kSigStructs.o: ../SigHandling/kSigStructs.c
- ${CC} -c ${CFLAGS} ../SigHandling/kSigStructs.c
-
- kmdMM.o: ../KmdOps/kmdMM.c
- ${CC} -c ${CFLAGS} ../KmdOps/kmdMM.c
-
- kmdCode.o: ../KmdOps/kmdCode.c
- ${CC} -c ${CFLAGS} ../KmdOps/kmdCode.c
-
- errMsg.o: ../Utils/errMsg.c
- ${CC} -c ${CFLAGS} ../Utils/errMsg.c
-
- getlnn.o: ../Utils/getlnn.c
- ${CC} -c ${CFLAGS} ../Utils/getlnn.c
-
- myalloc.o: ../EmMalloc/myalloc.c
- ${CC} -c ${CFLAGS} ../EmMalloc/myalloc.c
-
- emalloc.o: ../EmMalloc/emalloc.c
- ${CC} -c ${CFLAGS} ../EmMalloc/emalloc.c
-
- install.o: ../EmMalloc/install.c
- ${CC} -c ${CFLAGS} ../EmMalloc/install.c
-
- stats.o: ../EmMalloc/stats.c
- ${CC} -c ${CFLAGS} ../EmMalloc/stats.c
-
- mallocStats.o: ../Em/mallocStats.c
- ${CC} -c ${CFLAGS} ../Em/mallocStats.c
-
- timerVals.o: ../Utils/timerVals.c
- ${CC} -c ${CFLAGS} ../Utils/timerVals.c
-
- ../h/consts.h: ../h/emTypes.h ../h/consts.c
- cd ../h ; make consts.h
-
- ../Em/ementryset.c ../Em/ementryext.h: kstub.4s ecstub.4s
- cd ../Em ; make -f makeementry
-
- definexkernel: makefile
- echo ${DEFINEXKERNEL} > definexkernel
-
- # definexkernel contains a conditional compilation flag for xkernel
- kstub.4s: ../Em/${MACHINE}.kstub.4s definexkernel
- rm -f kstub.4s
- cp ../Em/${MACHINE}.kstub.4s kstub.4s
-
- # definexkernel has no other purpose than to ensure execution
- ecstub.4s: ../Em/${MACHINE}.ecstub.4s definexkernel
- rm -f ecstub.4s
- cp ../Em/${MACHINE}.ecstub.4s ecstub.4s
-
- kstub.o: kstub.4s ../h/${MACHINE}.regdefs.h ../h/consts.h
- m4 ${M4FLAGS} kstub.4s | sed -e 's/\/\*.*\*\///' > kstub.s
- as -o kstub.o kstub.s
- rm -f kstub.s
-
- ecstub.o: ecstub.4s ../h/${MACHINE}.regdefs.h ../h/consts.h
- m4 ecstub.4s | sed -e 's/\/\*.*\*\///' > ecstub.s
- as -o ecstub.o ecstub.s
- rm -f ecstub.s
-
- errMsgs.o: ../../ErrCodes/errMsgs.c ../h/errMsgs.h
- ${CC} -c ${CFLAGS} ../../ErrCodes/errMsgs.c
-
- loadCode.o: ../FileLoad/loadCode.c
- ${CC} -c ${CFLAGS} ../FileLoad/loadCode.c
-
- readDoto.o: ../FileLoad/readDoto.c
- ${CC} -c ${CFLAGS} ../FileLoad/readDoto.c
-
- transDoto.o: ../FileLoad/transDoto.c
- ${CC} -c ${CFLAGS} ../FileLoad/transDoto.c
-
- fakeIO.o: ../Em/fakeIO.c
- ${CC} -c ${CFLAGS} ../Em/fakeIO.c
-
- lmCode.o: ../Em/lmCode.c
- ${CC} -c ${CFLAGS} ../Em/lmCode.c
-
- node.o: ../Em/node.c
- ${CC} -c ${CFLAGS} ../Em/node.c
-
- assert.o: ../Em/assert.c
- ${CC} -c ${CFLAGS} ../Em/assert.c
-
- map.o: ../Em/map.c
- ${CC} -c ${CFLAGS} ../Em/map.c
-
- item.o: ../Em/item.c
- ${CC} -c ${CFLAGS} ../Em/item.c
-
- expandArray.o: ../Em/expandArray.c
- ${CC} -c ${CFLAGS} ../Em/expandArray.c
-
- timing.o: ../Em/timing.c
- ${CC} -c ${CFLAGS} ../Em/timing.c
-
- utils.o: ../Em/utils.c
- ${CC} -c ${CFLAGS} ../Em/utils.c
-
- ecutils.o: ../Em/ecutils.c
- ${CC} -c ${CFLAGS} ../Em/ecutils.c
-
- sigio.o: ../Em/sigio.c
- ${CC} -c ${CFLAGS} ../Em/sigio.c
-
- unixIO.o: ../Em/unixIO.c
- ${CC} -c ${CFLAGS} ../Em/unixIO.c
-
- stream.o: ../Em/stream.c
- ${CC} -c ${CFLAGS} ../Em/stream.c
-
- request.o: ../Em/request.c
- ${CC} -c ${CFLAGS} ../Em/request.c
-
- measure.o: ../Em/measure.c
- ${CC} -c ${CFLAGS} ../Em/measure.c
-
- kConform.o: ../Em/kConform.c
- ${CC} -c ${CFLAGS} ../Em/kConform.c
-
- badsignal.o: ../Em/badsignal.c
- ${CC} -c ${CFLAGS} ../Em/badsignal.c
-
- avg.o: ../Em/avg.c
- ${CC} -c ${CFLAGS} ../Em/avg.c
-
- set.o: ../Em/set.c
- ${CC} -c ${CFLAGS} ../Em/set.c
-
- gc.o: ../Em/gc.c
- ${CC} -c ${CFLAGS} ../Em/gc.c
-
- map96.o: ../Em/map96.c
- ${CC} -c ${CFLAGS} ../Em/map96.c
-
- XInterface.o: ../X/XInterface.c
- ${CC} -c ${CFLAGS} ../X/XInterface.c
-
- xkUtils.o: ../Em/xkUtils.c
- ${CC} -c ${CFLAGS} ../Em/xkUtils.c
-
- mlp.o: ../MLP/mlp.c
- ${CC} -c ${CFLAGS} ../MLP/mlp.c
-
- ndbm.o: ../Em/ndbm.c ../Em/ndbm.h
- @-if (ar t /lib/libc.a|egrep ndbm>/dev/null); then\
- cp ndbm.c ndbm.bak; \
- rm -f ndbm.c; \
- cp /dev/null ndbm.c; \
- else \
- echo "doesn't exist">/dev/null; \
- fi
- ${CC} -c ${CFLAGS} ndbm.c;
- @-mv -f ndbm.bak ndbm.c
-
- # DO NOT DELETE THIS LINE -- make depend uses it
-
- ndbm.o: ../Em/ndbm.h
-
- xkUtils.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- xkUtils.o: /scratch/eric/emerald//Kernel/h/kEvents.h
- xkUtils.o: /scratch/eric/emerald//Kernel/h/emTypes.h
- xkUtils.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
-
- XInterface.o: /scratch/eric/emerald//Kernel/h/system.h
- XInterface.o: /scratch/eric/emerald//Kernel/h/macros.h
- XInterface.o: /scratch/eric/emerald//Kernel/h/assert.h
- XInterface.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- XInterface.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
- XInterface.o: /scratch/eric/emerald//Kernel/h/emTypes.h
- XInterface.o: /scratch/eric/emerald//Kernel/h/builtins.h
- XInterface.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
- XInterface.o: /scratch/eric/emerald//Kernel/h/emeraldTypes.h
- XInterface.o: /scratch/eric/emerald//Kernel/h/kEvents.h
- XInterface.o: /scratch/eric/emerald//Kernel/h/sigio.h
-
- map96.o: /scratch/eric/emerald//Kernel/h/assert.h
- map96.o: /scratch/eric/emerald//Kernel/h/system.h
- map96.o: /scratch/eric/emerald//Kernel/h/map96.h
-
- gc.o: /scratch/eric/emerald//Kernel/h/system.h
- gc.o: /scratch/eric/emerald//Kernel/h/assert.h
- gc.o: /scratch/eric/emerald//Kernel/h/macros.h
- gc.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
- gc.o: /scratch/eric/emerald//Kernel/h/emTypes.h
- gc.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- gc.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
- gc.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
- gc.o: /scratch/eric/emerald//Kernel/h/kEvents.h
- gc.o: /scratch/eric/emerald//Kernel/h/emkDefs.h
- gc.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
- gc.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
- gc.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
- gc.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
- gc.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
- gc.o: /scratch/eric/emerald//Kernel/h/map.h
- gc.o: /scratch/eric/emerald//Kernel/h/set.h
- gc.o: /scratch/eric/emerald//Kernel/h/hotsTypes.h
- gc.o: /scratch/eric/emerald//Kernel/h/mmKeyTypes.h
- gc.o: /scratch/eric/emerald//Kernel/h/utils.h
- gc.o: /scratch/eric/emerald//Kernel/h/builtins.h
-
- set.o: /scratch/eric/emerald//Kernel/h/assert.h
- set.o: /scratch/eric/emerald//Kernel/h/system.h
- set.o: /scratch/eric/emerald//Kernel/h/set.h
-
- avg.o: /scratch/eric/emerald//Kernel/h/system.h
- avg.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
-
- badsignal.o: /scratch/eric/emerald//Kernel/h/kEvents.h
- badsignal.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- badsignal.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
- badsignal.o: /scratch/eric/emerald//Kernel/h/emTypes.h
- badsignal.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
- badsignal.o: /scratch/eric/emerald//Kernel/h/utils.h
- badsignal.o: /scratch/eric/emerald//Kernel/h/system.h
-
- kConform.o: /scratch/eric/emerald//Kernel/h/system.h
- kConform.o: /scratch/eric/emerald//Kernel/h/assert.h
- kConform.o: /scratch/eric/emerald//Kernel/h/map.h
- kConform.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
- kConform.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
- kConform.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- kConform.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
- kConform.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
- kConform.o: /scratch/eric/emerald//Kernel/h/emTypes.h
- kConform.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
- kConform.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
- kConform.o: /scratch/eric/emerald//Kernel/h/builtins.h
- kConform.o: /scratch/eric/emerald//Kernel/h/emkDefs.h
- kConform.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
- kConform.o: /scratch/eric/emerald//Kernel/h/set.h
- kConform.o: /scratch/eric/emerald//Kernel/h/utils.h
-
- measure.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- measure.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
-
- request.o: /scratch/eric/emerald//Kernel/h/system.h
- request.o: /scratch/eric/emerald//Kernel/h/macros.h
- request.o: /scratch/eric/emerald//Kernel/h/assert.h
- request.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
- request.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
- request.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- request.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
- request.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
- request.o: /scratch/eric/emerald//Kernel/h/emTypes.h
- request.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
- request.o: /scratch/eric/emerald//Kernel/h/map.h
- request.o: /scratch/eric/emerald//Kernel/h/emkDefs.h
- request.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
- request.o: /scratch/eric/emerald//Kernel/h/set.h
-
- stream.o: /scratch/eric/emerald//Kernel/h/assert.h
- stream.o: /scratch/eric/emerald//Kernel/h/emTypes.h
- stream.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- stream.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
- stream.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
- stream.o: /scratch/eric/emerald//Kernel/h/builtins.h
- stream.o: /scratch/eric/emerald//Kernel/h/emeraldTypes.h
- stream.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
- stream.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
- stream.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
- stream.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
- stream.o: /scratch/eric/emerald//Kernel/h/emkDefs.h
- stream.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
- stream.o: /scratch/eric/emerald//Kernel/h/map.h
- stream.o: /scratch/eric/emerald//Kernel/h/set.h
-
- unixIO.o: /scratch/eric/emerald//Kernel/h/emTypes.h
- unixIO.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- unixIO.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
- unixIO.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
-
- sigio.o: /scratch/eric/emerald//Kernel/h/system.h
- sigio.o: /scratch/eric/emerald//Kernel/h/assert.h
- sigio.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- sigio.o: /scratch/eric/emerald//Kernel/h/sigio.h
- sigio.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
-
- ecutils.o: /scratch/eric/emerald//Kernel/h/system.h
- ecutils.o: /scratch/eric/emerald//Kernel/h/emTypes.h
- ecutils.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- ecutils.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
- ecutils.o: /scratch/eric/emerald//Kernel/h/emeraldTypes.h
- ecutils.o: /scratch/eric/emerald//Kernel/h/assert.h
- ecutils.o: /scratch/eric/emerald//Kernel/h/timeops.h
- ecutils.o: /scratch/eric/emerald//Kernel/h/consts.h
-
- utils.o: /scratch/eric/emerald//Kernel/h/system.h
- utils.o: /scratch/eric/emerald//Kernel/h/assert.h
- utils.o: /scratch/eric/emerald//Kernel/h/emTypes.h
- utils.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- utils.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
- utils.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
- utils.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
- utils.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
- utils.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
- utils.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
- utils.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
- utils.o: /scratch/eric/emerald//Kernel/h/emkDefs.h
- utils.o: /scratch/eric/emerald//Kernel/h/map.h
- utils.o: /scratch/eric/emerald//Kernel/h/set.h
- utils.o: /scratch/eric/emerald//Kernel/h/consts.h
- utils.o: /scratch/eric/emerald//Kernel/h/kEvents.h
-
- timing.o: /scratch/eric/emerald//Kernel/h/assert.h
- timing.o: /scratch/eric/emerald//Kernel/h/system.h
- timing.o: /scratch/eric/emerald//Kernel/h/macros.h
- timing.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
- timing.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
- timing.o: /scratch/eric/emerald//Kernel/h/emTypes.h
- timing.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- timing.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
- timing.o: /scratch/eric/emerald//Kernel/h/timerTypes.h
- timing.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
- timing.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
- timing.o: /scratch/eric/emerald//Kernel/h/kEvents.h
- timing.o: /scratch/eric/emerald//Kernel/h/emCodes.h
- timing.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
- timing.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
- timing.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
- timing.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
- timing.o: /scratch/eric/emerald//Kernel/h/emkDefs.h
- timing.o: /scratch/eric/emerald//Kernel/h/map.h
- timing.o: /scratch/eric/emerald//Kernel/h/set.h
- timing.o: /scratch/eric/emerald//Kernel/h/lmCodes.h
- timing.o: /scratch/eric/emerald//Kernel/h/hotsTypes.h
- timing.o: /scratch/eric/emerald//Kernel/h/mmKeyTypes.h
- timing.o: /scratch/eric/emerald//Kernel/h/timeops.h
- timing.o: /scratch/eric/emerald//Kernel/h/utils.h
-
- expandArray.o: /scratch/eric/emerald//Kernel/h/system.h
- expandArray.o: /scratch/eric/emerald//Kernel/h/assert.h
- expandArray.o: /scratch/eric/emerald//Kernel/h/expandArray.h
-
- item.o: /scratch/eric/emerald//Kernel/h/assert.h
- item.o: /scratch/eric/emerald//Kernel/h/system.h
- item.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
- item.o: /scratch/eric/emerald//Kernel/h/emTypes.h
- item.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- item.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
- item.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
- item.o: /scratch/eric/emerald//Kernel/h/emCodes.h
- item.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
- item.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
- item.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
- item.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
- item.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
- item.o: /scratch/eric/emerald//Kernel/h/emkDefs.h
- item.o: /scratch/eric/emerald//Kernel/h/map.h
- item.o: /scratch/eric/emerald//Kernel/h/set.h
- item.o: /scratch/eric/emerald//Kernel/h/lmCodes.h
- item.o: /scratch/eric/emerald//Kernel/h/utils.h
-
- map.o: /scratch/eric/emerald//Kernel/h/assert.h
- map.o: /scratch/eric/emerald//Kernel/h/system.h
- map.o: /scratch/eric/emerald//Kernel/h/map.h
-
- assert.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- assert.o: /scratch/eric/emerald//Kernel/h/system.h
-
- node.o: /scratch/eric/emerald//Kernel/h/system.h
- node.o: /scratch/eric/emerald//Kernel/h/assert.h
- node.o: /scratch/eric/emerald//Kernel/h/emTypes.h
- node.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- node.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
- node.o: /scratch/eric/emerald//Kernel/h/hotsTypes.h
- node.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
- node.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
- node.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
- node.o: /scratch/eric/emerald//Kernel/h/mmKeyTypes.h
- node.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
- node.o: /scratch/eric/emerald//Kernel/h/emeraldTypes.h
- node.o: /scratch/eric/emerald//Kernel/h/timeops.h
- node.o: /scratch/eric/emerald//Kernel/h/timerTypes.h
- node.o: /scratch/eric/emerald//Kernel/h/consts.h
- node.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
- node.o: /scratch/eric/emerald//Kernel/h/builtins.h
- node.o: /scratch/eric/emerald//Kernel/h/emkDefs.h
- node.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
- node.o: /scratch/eric/emerald//Kernel/h/map.h
- node.o: /scratch/eric/emerald//Kernel/h/set.h
- node.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
- node.o: /scratch/eric/emerald//Kernel/h/utils.h
- node.o: /scratch/eric/emerald//Kernel/h/macros.h
-
- lmCode.o: /scratch/eric/emerald//Kernel/h/assert.h
- lmCode.o: /scratch/eric/emerald//Kernel/h/macros.h
- lmCode.o: /scratch/eric/emerald//Kernel/h/system.h
- lmCode.o: /scratch/eric/emerald//Kernel/h/mmTypes.h
- lmCode.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- lmCode.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
- lmCode.o: /scratch/eric/emerald//Kernel/h/mmFifoTypes.h
- lmCode.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
- lmCode.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
- lmCode.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
- lmCode.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
- lmCode.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
- lmCode.o: /scratch/eric/emerald//Kernel/h/unixCodes.h
- lmCode.o: /scratch/eric/emerald//Kernel/h/mmBufTypes.h
- lmCode.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
- lmCode.o: /scratch/eric/emerald//Kernel/h/kEvents.h
- lmCode.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
- lmCode.o: /scratch/eric/emerald//Kernel/h/lmCodes.h
- lmCode.o: /scratch/eric/emerald//Kernel/h/hotsTypes.h
- lmCode.o: /scratch/eric/emerald//Kernel/h/mmKeyTypes.h
-
- fakeIO.o: /scratch/eric/emerald//Kernel/h/emTypes.h
- fakeIO.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- fakeIO.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
- fakeIO.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
-
- transDoto.o: /scratch/eric/emerald//Kernel/h/assert.h
- transDoto.o: /scratch/eric/emerald//Kernel/h/system.h
- transDoto.o: /scratch/eric/emerald//Kernel/h/emTypes.h
- transDoto.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- transDoto.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
- transDoto.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
- transDoto.o: /scratch/eric/emerald//Kernel/h/consts.h
-
- readDoto.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- readDoto.o: /scratch/eric/emerald//Kernel/h/system.h
- readDoto.o: /scratch/eric/emerald//Kernel/h/assert.h
- readDoto.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
- readDoto.o: /scratch/eric/emerald//Kernel/h/emTypes.h
- readDoto.o: /scratch/eric/emerald//Kernel/h/map.h
-
- loadCode.o: /scratch/eric/emerald//Kernel/h/system.h
- loadCode.o: /scratch/eric/emerald//Kernel/h/macros.h
- loadCode.o: /scratch/eric/emerald//Kernel/h/assert.h
- loadCode.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
- loadCode.o: /scratch/eric/emerald//Kernel/h/hotsTypes.h
- loadCode.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- loadCode.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
- loadCode.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
- loadCode.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
- loadCode.o: /scratch/eric/emerald//Kernel/h/mmKeyTypes.h
- loadCode.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
- loadCode.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
- loadCode.o: /scratch/eric/emerald//Kernel/h/emTypes.h
- loadCode.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
- loadCode.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
- loadCode.o: /scratch/eric/emerald//Kernel/h/kEvents.h
- loadCode.o: /scratch/eric/emerald//Kernel/h/emkDefs.h
- loadCode.o: /scratch/eric/emerald//Kernel/h/map.h
- loadCode.o: /scratch/eric/emerald//Kernel/h/set.h
- loadCode.o: /scratch/eric/emerald//Kernel/h/lmCodes.h
- loadCode.o: /scratch/eric/emerald//Kernel/h/emCodes.h
- loadCode.o: /scratch/eric/emerald//Kernel/h/map96.h
- loadCode.o: /scratch/eric/emerald//Kernel/h/sigio.h
- loadCode.o: /scratch/eric/emerald//Kernel/h/emeraldTypes.h
- loadCode.o: /scratch/eric/emerald//Kernel/h/consts.h
- loadCode.o: /scratch/eric/emerald//Kernel/h/builtins.h
- loadCode.o: /scratch/eric/emerald//Kernel/h/utils.h
-
- errMsgs.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
- errMsgs.o: /scratch/eric/emerald//Kernel/h/system.h
-
- mallocStats.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- mallocStats.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
-
- emalloc.o: /scratch/eric/emerald//Kernel/h/assert.h
- emalloc.o: /scratch/eric/emerald//Kernel/h/emTypes.h
- emalloc.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- emalloc.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
- emalloc.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
- emalloc.o: /scratch/eric/emerald//Kernel/h/emkDefs.h
- emalloc.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
- emalloc.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
- emalloc.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
- emalloc.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
- emalloc.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
- emalloc.o: /scratch/eric/emerald//Kernel/h/map.h
- emalloc.o: /scratch/eric/emerald//Kernel/h/set.h
- emalloc.o: /scratch/eric/emerald//Kernel/h/kEvents.h
- emalloc.o: /scratch/eric/emerald//Kernel/h/system.h
-
- getlnn.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
-
- errMsg.o: /scratch/eric/emerald//Kernel/h/system.h
- errMsg.o: /scratch/eric/emerald//Kernel/h/mmTypes.h
- errMsg.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- errMsg.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
- errMsg.o: /scratch/eric/emerald//Kernel/h/mmFifoTypes.h
- errMsg.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
- errMsg.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
- errMsg.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
- errMsg.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
- errMsg.o: /scratch/eric/emerald//Kernel/h/unixCodes.h
- errMsg.o: /scratch/eric/emerald//Kernel/h/mmBufTypes.h
- errMsg.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
- errMsg.o: /scratch/eric/emerald//Kernel/h/kmdDefs.h
- errMsg.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
-
- kmdCode.o: /scratch/eric/emerald//Kernel/h/system.h
- kmdCode.o: /scratch/eric/emerald//Kernel/h/expandArray.h
- kmdCode.o: /scratch/eric/emerald//Kernel/h/mmTypes.h
- kmdCode.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- kmdCode.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
- kmdCode.o: /scratch/eric/emerald//Kernel/h/mmFifoTypes.h
- kmdCode.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
- kmdCode.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
- kmdCode.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
- kmdCode.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
- kmdCode.o: /scratch/eric/emerald//Kernel/h/unixCodes.h
- kmdCode.o: /scratch/eric/emerald//Kernel/h/mmBufTypes.h
- kmdCode.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
- kmdCode.o: /scratch/eric/emerald//Kernel/h/kEvents.h
- kmdCode.o: /scratch/eric/emerald//Kernel/h/kmdDefs.h
- kmdCode.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
- kmdCode.o: /scratch/eric/emerald//Kernel/h/timerTypes.h
- kmdCode.o: /scratch/eric/emerald//Kernel/h/sigio.h
- kmdCode.o: /scratch/eric/emerald//Kernel/h/map.h
- kmdCode.o: /scratch/eric/emerald//Kernel/h/emstream.h
-
- kmdMM.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
- kmdMM.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
- kmdMM.o: /scratch/eric/emerald//Kernel/h/unixCodes.h
- kmdMM.o: /scratch/eric/emerald//Kernel/h/mmTypes.h
- kmdMM.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- kmdMM.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
- kmdMM.o: /scratch/eric/emerald//Kernel/h/mmFifoTypes.h
- kmdMM.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
- kmdMM.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
- kmdMM.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
- kmdMM.o: /scratch/eric/emerald//Kernel/h/kmdDefs.h
-
- kSigStructs.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- kSigStructs.o: /scratch/eric/emerald//Kernel/h/kEvents.h
-
- setHandler.o: /scratch/eric/emerald//Kernel/h/system.h
- setHandler.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- setHandler.o: /scratch/eric/emerald//Kernel/h/kEvents.h
- setHandler.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
-
- releaseSigs.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- releaseSigs.o: /scratch/eric/emerald//Kernel/h/kEvents.h
- releaseSigs.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
-
- replicant.o: /scratch/eric/emerald//Kernel/h/ndbm.h
- replicant.o: /scratch/eric/emerald//Kernel/h/system.h
- replicant.o: /scratch/eric/emerald//Kernel/h/assert.h
- replicant.o: /scratch/eric/emerald//Kernel/h/macros.h
- replicant.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
- replicant.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
- replicant.o: /scratch/eric/emerald//Kernel/h/emTypes.h
- replicant.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- replicant.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
- replicant.o: /scratch/eric/emerald//Kernel/h/timerTypes.h
- replicant.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
- replicant.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
- replicant.o: /scratch/eric/emerald//Kernel/h/kEvents.h
- replicant.o: /scratch/eric/emerald//Kernel/h/emCodes.h
- replicant.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
- replicant.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
- replicant.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
- replicant.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
- replicant.o: /scratch/eric/emerald//Kernel/h/emkDefs.h
- replicant.o: /scratch/eric/emerald//Kernel/h/map.h
- replicant.o: /scratch/eric/emerald//Kernel/h/set.h
- replicant.o: /scratch/eric/emerald//Kernel/h/lmCodes.h
- replicant.o: /scratch/eric/emerald//Kernel/h/hotsTypes.h
- replicant.o: /scratch/eric/emerald//Kernel/h/mmKeyTypes.h
- replicant.o: /scratch/eric/emerald//Kernel/h/expandArray.h
- replicant.o: /scratch/eric/emerald//Kernel/h/consts.h
- replicant.o: /scratch/eric/emerald//Kernel/h/utils.h
- replicant.o: /scratch/eric/emerald//Kernel/h/replicant.h
- replicant.o: /scratch/eric/emerald//Kernel/h/cPLog.h
-
- recover.o: /scratch/eric/emerald//Kernel/h/system.h
- recover.o: /scratch/eric/emerald//Kernel/h/assert.h
- recover.o: /scratch/eric/emerald//Kernel/h/macros.h
- recover.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
- recover.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
- recover.o: /scratch/eric/emerald//Kernel/h/emTypes.h
- recover.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- recover.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
- recover.o: /scratch/eric/emerald//Kernel/h/timerTypes.h
- recover.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
- recover.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
- recover.o: /scratch/eric/emerald//Kernel/h/kEvents.h
- recover.o: /scratch/eric/emerald//Kernel/h/emCodes.h
- recover.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
- recover.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
- recover.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
- recover.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
- recover.o: /scratch/eric/emerald//Kernel/h/emkDefs.h
- recover.o: /scratch/eric/emerald//Kernel/h/map.h
- recover.o: /scratch/eric/emerald//Kernel/h/set.h
- recover.o: /scratch/eric/emerald//Kernel/h/lmCodes.h
- recover.o: /scratch/eric/emerald//Kernel/h/hotsTypes.h
- recover.o: /scratch/eric/emerald//Kernel/h/mmKeyTypes.h
- recover.o: /scratch/eric/emerald//Kernel/h/consts.h
- recover.o: /scratch/eric/emerald//Kernel/h/utils.h
- recover.o: /scratch/eric/emerald//Kernel/h/cPLog.h
- recover.o: /scratch/eric/emerald//Kernel/h/replicant.h
-
- cPLog.o: /scratch/eric/emerald//Kernel/h/ndbm.h
- cPLog.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- cPLog.o: /scratch/eric/emerald//Kernel/h/emTypes.h
- cPLog.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
- cPLog.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
- cPLog.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
- cPLog.o: /scratch/eric/emerald//Kernel/h/cPLog.h
- cPLog.o: /scratch/eric/emerald//Kernel/h/cPDBM.h
- cPLog.o: /scratch/eric/emerald//Kernel/h/replicant.h
-
- cPDBM.o: /scratch/eric/emerald//Kernel/h/ndbm.h
- cPDBM.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
- cPDBM.o: /scratch/eric/emerald//Kernel/h/emTypes.h
- cPDBM.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- cPDBM.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
- cPDBM.o: /scratch/eric/emerald//Kernel/h/cPDBM.h
- cPDBM.o: /scratch/eric/emerald//Kernel/h/cPLog.h
-
- checkPoint.o: /scratch/eric/emerald//Kernel/h/ndbm.h
- checkPoint.o: /scratch/eric/emerald//Kernel/h/system.h
- checkPoint.o: /scratch/eric/emerald//Kernel/h/assert.h
- checkPoint.o: /scratch/eric/emerald//Kernel/h/macros.h
- checkPoint.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
- checkPoint.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
- checkPoint.o: /scratch/eric/emerald//Kernel/h/emTypes.h
- checkPoint.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- checkPoint.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
- checkPoint.o: /scratch/eric/emerald//Kernel/h/timerTypes.h
- checkPoint.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
- checkPoint.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
- checkPoint.o: /scratch/eric/emerald//Kernel/h/kEvents.h
- checkPoint.o: /scratch/eric/emerald//Kernel/h/emCodes.h
- checkPoint.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
- checkPoint.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
- checkPoint.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
- checkPoint.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
- checkPoint.o: /scratch/eric/emerald//Kernel/h/emkDefs.h
- checkPoint.o: /scratch/eric/emerald//Kernel/h/map.h
- checkPoint.o: /scratch/eric/emerald//Kernel/h/set.h
- checkPoint.o: /scratch/eric/emerald//Kernel/h/lmCodes.h
- checkPoint.o: /scratch/eric/emerald//Kernel/h/hotsTypes.h
- checkPoint.o: /scratch/eric/emerald//Kernel/h/mmKeyTypes.h
- checkPoint.o: /scratch/eric/emerald//Kernel/h/expandArray.h
- checkPoint.o: /scratch/eric/emerald//Kernel/h/consts.h
- checkPoint.o: /scratch/eric/emerald//Kernel/h/utils.h
- checkPoint.o: /scratch/eric/emerald//Kernel/h/cPLog.h
- checkPoint.o: /scratch/eric/emerald//Kernel/h/cPDBM.h
- checkPoint.o: /scratch/eric/emerald//Kernel/h/checkPoint.h
- checkPoint.o: /scratch/eric/emerald//Kernel/h/replicant.h
-
- mobility.o: /scratch/eric/emerald//Kernel/h/system.h
- mobility.o: /scratch/eric/emerald//Kernel/h/assert.h
- mobility.o: /scratch/eric/emerald//Kernel/h/macros.h
- mobility.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
- mobility.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
- mobility.o: /scratch/eric/emerald//Kernel/h/emTypes.h
- mobility.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- mobility.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
- mobility.o: /scratch/eric/emerald//Kernel/h/timerTypes.h
- mobility.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
- mobility.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
- mobility.o: /scratch/eric/emerald//Kernel/h/kEvents.h
- mobility.o: /scratch/eric/emerald//Kernel/h/emCodes.h
- mobility.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
- mobility.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
- mobility.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
- mobility.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
- mobility.o: /scratch/eric/emerald//Kernel/h/emkDefs.h
- mobility.o: /scratch/eric/emerald//Kernel/h/map.h
- mobility.o: /scratch/eric/emerald//Kernel/h/set.h
- mobility.o: /scratch/eric/emerald//Kernel/h/lmCodes.h
- mobility.o: /scratch/eric/emerald//Kernel/h/hotsTypes.h
- mobility.o: /scratch/eric/emerald//Kernel/h/mmKeyTypes.h
- mobility.o: /scratch/eric/emerald//Kernel/h/consts.h
- mobility.o: /scratch/eric/emerald//Kernel/h/utils.h
-
- locate.o: /scratch/eric/emerald//Kernel/h/system.h
- locate.o: /scratch/eric/emerald//Kernel/h/assert.h
- locate.o: /scratch/eric/emerald//Kernel/h/macros.h
- locate.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
- locate.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
- locate.o: /scratch/eric/emerald//Kernel/h/emTypes.h
- locate.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- locate.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
- locate.o: /scratch/eric/emerald//Kernel/h/timerTypes.h
- locate.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
- locate.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
- locate.o: /scratch/eric/emerald//Kernel/h/kEvents.h
- locate.o: /scratch/eric/emerald//Kernel/h/emCodes.h
- locate.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
- locate.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
- locate.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
- locate.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
- locate.o: /scratch/eric/emerald//Kernel/h/emkDefs.h
- locate.o: /scratch/eric/emerald//Kernel/h/map.h
- locate.o: /scratch/eric/emerald//Kernel/h/set.h
- locate.o: /scratch/eric/emerald//Kernel/h/lmCodes.h
- locate.o: /scratch/eric/emerald//Kernel/h/hotsTypes.h
- locate.o: /scratch/eric/emerald//Kernel/h/mmKeyTypes.h
- locate.o: /scratch/eric/emerald//Kernel/h/expandArray.h
- locate.o: /scratch/eric/emerald//Kernel/h/consts.h
- locate.o: /scratch/eric/emerald//Kernel/h/utils.h
- locate.o: /scratch/eric/emerald//Kernel/h/cPLog.h
- locate.o: /scratch/eric/emerald//Kernel/h/cPDBM.h
- locate.o: /scratch/eric/emerald//Kernel/h/ndbm.h
- locate.o: /scratch/eric/emerald//Kernel/h/checkPoint.h
- locate.o: /scratch/eric/emerald//Kernel/h/replicant.h
-
- invoke.o: /scratch/eric/emerald//Kernel/h/system.h
- invoke.o: /scratch/eric/emerald//Kernel/h/assert.h
- invoke.o: /scratch/eric/emerald//Kernel/h/macros.h
- invoke.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
- invoke.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
- invoke.o: /scratch/eric/emerald//Kernel/h/emTypes.h
- invoke.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- invoke.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
- invoke.o: /scratch/eric/emerald//Kernel/h/timerTypes.h
- invoke.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
- invoke.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
- invoke.o: /scratch/eric/emerald//Kernel/h/kEvents.h
- invoke.o: /scratch/eric/emerald//Kernel/h/emCodes.h
- invoke.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
- invoke.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
- invoke.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
- invoke.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
- invoke.o: /scratch/eric/emerald//Kernel/h/emkDefs.h
- invoke.o: /scratch/eric/emerald//Kernel/h/map.h
- invoke.o: /scratch/eric/emerald//Kernel/h/set.h
- invoke.o: /scratch/eric/emerald//Kernel/h/lmCodes.h
- invoke.o: /scratch/eric/emerald//Kernel/h/hotsTypes.h
- invoke.o: /scratch/eric/emerald//Kernel/h/mmKeyTypes.h
- invoke.o: /scratch/eric/emerald//Kernel/h/utils.h
-
- kOps.o: /scratch/eric/emerald//Kernel/h/system.h
- kOps.o: /scratch/eric/emerald//Kernel/h/assert.h
- kOps.o: /scratch/eric/emerald//Kernel/h/macros.h
- kOps.o: /scratch/eric/emerald//Kernel/h/expandArray.h
- kOps.o: /scratch/eric/emerald//Kernel/h/emTypes.h
- kOps.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- kOps.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
- kOps.o: /scratch/eric/emerald//Kernel/h/timerTypes.h
- kOps.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
- kOps.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
- kOps.o: /scratch/eric/emerald//Kernel/h/kEvents.h
- kOps.o: /scratch/eric/emerald//Kernel/h/mmTypes.h
- kOps.o: /scratch/eric/emerald//Kernel/h/mmFifoTypes.h
- kOps.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
- kOps.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
- kOps.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
- kOps.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
- kOps.o: /scratch/eric/emerald//Kernel/h/emkDefs.h
- kOps.o: /scratch/eric/emerald//Kernel/h/map.h
- kOps.o: /scratch/eric/emerald//Kernel/h/set.h
- kOps.o: /scratch/eric/emerald//Kernel/h/builtins.h
- kOps.o: /scratch/eric/emerald//Kernel/h/emeraldTypes.h
- kOps.o: /scratch/eric/emerald//Kernel/h/consts.h
- kOps.o: /scratch/eric/emerald//Kernel/h/regdefs.h
- kOps.o: /scratch/eric/emerald//Kernel/h/utils.h ../Em/ementryext.h
- kOps.o: /scratch/eric/emerald//Kernel/Em/reqBuiltins.c ../Em/ementryset.c
-
- OID.o: /scratch/eric/emerald//Kernel/h/system.h
- OID.o: /scratch/eric/emerald//Kernel/h/mmTypes.h
- OID.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- OID.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
- OID.o: /scratch/eric/emerald//Kernel/h/mmFifoTypes.h
- OID.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
- OID.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
- OID.o: /scratch/eric/emerald//Kernel/h/emTypes.h
- OID.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
- OID.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
-
- mainLoop.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- mainLoop.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
- mainLoop.o: /scratch/eric/emerald//Kernel/h/kEvents.h
- mainLoop.o: /scratch/eric/emerald//Kernel/h/emTypes.h
- mainLoop.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
-
- main.o: /scratch/eric/emerald//Kernel/h/assert.h
- main.o: /scratch/eric/emerald//Kernel/h/system.h
- main.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- main.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
- main.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
- main.o: /scratch/eric/emerald//Kernel/h/mmTypes.h
- main.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
- main.o: /scratch/eric/emerald//Kernel/h/mmFifoTypes.h
- main.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
- main.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
- main.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
- main.o: /scratch/eric/emerald//Kernel/h/kBootCodes.h
- main.o: /scratch/eric/emerald//Kernel/h/kEvents.h
- main.o: /scratch/eric/emerald//Kernel/h/hotsTypes.h
- main.o: /scratch/eric/emerald//Kernel/h/mmKeyTypes.h
- main.o: /scratch/eric/emerald//Kernel/h/kmdDefs.h
- main.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
- main.o: /scratch/eric/emerald//Kernel/h/emPorts.h
- main.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
- main.o: /scratch/eric/emerald//Kernel/h/emTypes.h
-
- bootKernel.o: /scratch/eric/emerald//Kernel/h/timerTypes.h
- bootKernel.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- bootKernel.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
- bootKernel.o: /scratch/eric/emerald//Kernel/h/system.h
- bootKernel.o: /scratch/eric/emerald//Kernel/h/assert.h
- bootKernel.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
- bootKernel.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
- bootKernel.o: /scratch/eric/emerald//Kernel/h/mmTypes.h
- bootKernel.o: /scratch/eric/emerald//Kernel/h/mmFifoTypes.h
- bootKernel.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
- bootKernel.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
- bootKernel.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
- bootKernel.o: /scratch/eric/emerald//Kernel/h/kBootCodes.h
- bootKernel.o: /scratch/eric/emerald//Kernel/h/kEvents.h
- bootKernel.o: /scratch/eric/emerald//Kernel/h/dstCodes.h
- bootKernel.o: /scratch/eric/emerald//Kernel/h/hotsTypes.h
- bootKernel.o: /scratch/eric/emerald//Kernel/h/mmKeyTypes.h
- bootKernel.o: /scratch/eric/emerald//Kernel/h/kBootTypes.h
- bootKernel.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
-
- hotsUpDown.o: /scratch/eric/emerald//Kernel/h/system.h
- hotsUpDown.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- hotsUpDown.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
- hotsUpDown.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
- hotsUpDown.o: /scratch/eric/emerald//Kernel/h/mmTypes.h
- hotsUpDown.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
- hotsUpDown.o: /scratch/eric/emerald//Kernel/h/mmFifoTypes.h
- hotsUpDown.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
- hotsUpDown.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
- hotsUpDown.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
- hotsUpDown.o: /scratch/eric/emerald//Kernel/h/kBootCodes.h
- hotsUpDown.o: /scratch/eric/emerald//Kernel/h/kEvents.h
- hotsUpDown.o: /scratch/eric/emerald//Kernel/h/dstCodes.h
- hotsUpDown.o: /scratch/eric/emerald//Kernel/h/hotsTypes.h
- hotsUpDown.o: /scratch/eric/emerald//Kernel/h/mmKeyTypes.h
- hotsUpDown.o: /scratch/eric/emerald//Kernel/h/kBootTypes.h
- hotsUpDown.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
-
- sunQueInst.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- sunQueInst.o: /scratch/eric/emerald//Kernel/h/kEvents.h
-
- kTaskQ.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- kTaskQ.o: /scratch/eric/emerald//Kernel/h/kEvents.h
- kTaskQ.o: /scratch/eric/emerald//Kernel/h/system.h
-
- hotsAccess.o: /scratch/eric/emerald//Kernel/h/system.h
- hotsAccess.o: /scratch/eric/emerald//Kernel/h/mmTypes.h
- hotsAccess.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- hotsAccess.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
- hotsAccess.o: /scratch/eric/emerald//Kernel/h/mmFifoTypes.h
- hotsAccess.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
- hotsAccess.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
- hotsAccess.o: /scratch/eric/emerald//Kernel/h/dstCodes.h
- hotsAccess.o: /scratch/eric/emerald//Kernel/h/hotsTypes.h
- hotsAccess.o: /scratch/eric/emerald//Kernel/h/mmKeyTypes.h
- hotsAccess.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
- hotsAccess.o: /scratch/eric/emerald//Kernel/h/edenBaseTime.h
- hotsAccess.o: /scratch/eric/emerald//Kernel/h/kEvents.h
- hotsAccess.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
-
- traceMsg.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- traceMsg.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
-
- timerCode.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
- timerCode.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- timerCode.o: /scratch/eric/emerald//Kernel/h/assert.h
- timerCode.o: /scratch/eric/emerald//Kernel/h/mmTypes.h
- timerCode.o: /scratch/eric/emerald//Kernel/h/mmFifoTypes.h
- timerCode.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
- timerCode.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
- timerCode.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
- timerCode.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
- timerCode.o: /scratch/eric/emerald//Kernel/h/timerTypes.h
- timerCode.o: /scratch/eric/emerald//Kernel/h/kEvents.h
- timerCode.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
- timerCode.o: /scratch/eric/emerald//Kernel/h/expandArray.h
- timerCode.o: /scratch/eric/emerald//Kernel/h/timeops.h
- timerCode.o: /scratch/eric/emerald//Kernel/h/system.h
- timerCode.o: /scratch/eric/emerald//Kernel/h/map.h
-
- msgCode.o: /scratch/eric/emerald//Kernel/h/system.h
- msgCode.o: /scratch/eric/emerald//Kernel/h/assert.h
- msgCode.o: /scratch/eric/emerald//Kernel/h/macros.h
- msgCode.o: /scratch/eric/emerald//Kernel/h/mmTypes.h
- msgCode.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- msgCode.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
- msgCode.o: /scratch/eric/emerald//Kernel/h/mmFifoTypes.h
- msgCode.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
- msgCode.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
- msgCode.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
- msgCode.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
- msgCode.o: /scratch/eric/emerald//Kernel/h/unixCodes.h
- msgCode.o: /scratch/eric/emerald//Kernel/h/mmBufTypes.h
- msgCode.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
- msgCode.o: /scratch/eric/emerald//Kernel/h/hotsTypes.h
- msgCode.o: /scratch/eric/emerald//Kernel/h/mmKeyTypes.h
- msgCode.o: /scratch/eric/emerald//Kernel/h/kEvents.h
- msgCode.o: /scratch/eric/emerald//Kernel/h/timerTypes.h
- msgCode.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
- msgCode.o: /scratch/eric/emerald//Kernel/h/sigio.h
-
- keyedCode.o: /scratch/eric/emerald//Kernel/h/mmTypes.h
- keyedCode.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- keyedCode.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
- keyedCode.o: /scratch/eric/emerald//Kernel/h/mmFifoTypes.h
- keyedCode.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
- keyedCode.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
- keyedCode.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
- keyedCode.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
- keyedCode.o: /scratch/eric/emerald//Kernel/h/mmBufTypes.h
- keyedCode.o: /scratch/eric/emerald//Kernel/h/mmKeyTypes.h
-
- handlerCode.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
- handlerCode.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
- handlerCode.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
- handlerCode.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
- handlerCode.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- handlerCode.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
- handlerCode.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
-
- fifoCode.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
- fifoCode.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
- fifoCode.o: /scratch/eric/emerald//Kernel/h/mmBufTypes.h
- fifoCode.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- fifoCode.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
- fifoCode.o: /scratch/eric/emerald//Kernel/h/mmFifoTypes.h
- fifoCode.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
- fifoCode.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
- fifoCode.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
-
- etherCode.o: /scratch/eric/emerald//Kernel/h/mmTypes.h
- etherCode.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- etherCode.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
- etherCode.o: /scratch/eric/emerald//Kernel/h/mmFifoTypes.h
- etherCode.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
- etherCode.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
- etherCode.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
- etherCode.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
-
- bufferCode.o: /scratch/eric/emerald//Kernel/h/system.h
- bufferCode.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
- bufferCode.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
- bufferCode.o: /scratch/eric/emerald//Kernel/h/mmBufTypes.h
- bufferCode.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
- bufferCode.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
-
-
-